home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Python / protos / sysmodule_protos.h < prev    next >
Text File  |  1998-06-24  |  500b  |  11 lines

  1.  
  2. /* sysmodule.c */
  3. static object *sys_exit ( object *self , object *args );
  4. static object *sys_settrace ( object *self , object *args );
  5. static object *sys_setprofile ( object *self , object *args );
  6. static object *sys_setcheckinterval ( object *self , object *args );
  7. static object *sys_getrefcount ( object *self , object *args );
  8. static object *list_builtin_module_names ( void );
  9. static object *makepathobject ( char *path , int delim );
  10. static object *makeargvobject ( int argc , char **argv );
  11.